@extends('users.layout') @section('users.m_header') @endsection @section('users.breadcrumbs')

@lang('User')

@endsection @section('users.content')

@lang('Edit') @lang('User') #{{$user->id}}

@method('PUT') @csrf
@if($errors->has('name'))
{{$errors->first('name')}}
@endif
@if($errors->has('cedula'))
{{$errors->first('cedula')}}
@endif
@if($errors->has('grado'))
{{$errors->first('grado')}}
@endif
@if($errors->has('email'))
{{$errors->first('email')}}
@endif
@if($errors->has('unidad'))
{{$errors->first('unidad')}}
@endif
@if($errors->has('email_verified_at'))
{{$errors->first('email_verified_at')}}
@endif
@if($errors->has('password'))
{{$errors->first('password')}}
@endif
@if($errors->has('remember_token'))
{{$errors->first('remember_token')}}
@endif
@endsection @section('users.scripts') @endsection