@extends('template.layoutAdmin')
@section('title', 'Mi Perfil')
@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))
Corrige los siguientes errores:
@foreach ($errors->all() as $message)
- {{ $message }}
@endforeach
@endif
@endsection
@section('js')
@endsection