@extends('template.layoutAdmin', ['activeButton'=>''])
@section('title')
{{ trans('perfil.perfil') }}
@endsection
@section('style')
@endsection
@section('cabecera')
@endsection
@section('contenido')
@if(Session::has('message'))
{{Session::get('message')}}
@elseif(Session::has('message_error'))
{{Session::get('message_error')}}
@endif
@if(count($errors) > 0))
{{ trans('perfil.corrigeErrores') }}
@foreach ($errors->all() as $message)
- {{ $message }}
@endforeach
@endif
@endsection
@section('js')
@endsection