@if (Auth::user()->isAdmin() && Route::getCurrentRoute()->getPath() != "profile")
@else
@endif

Profile

@if (Auth::user()->isAdmin() && Route::getCurrentRoute()->getPath() != "profile")
@else
@endif
{{ csrf_field() }} {{ method_field("PATCH") }} @if (Auth::user()->isAdmin() && Route::getCurrentRoute()->getPath() != "profile")

{{ $user->email }}

{{ $user->last_login }} @if (!$user->last_login) Never @endif

@endif
@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if ($errors->has('middle_name')) {{ $errors->first('middle_name') }} @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('agency')) {{ $errors->first('agency') }} @endif
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('city')) {{ $errors->first('city') }} @endif
@if ($errors->has('zip')) {{ $errors->first('zip') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('phone_ext')) {{ $errors->first('phone_ext') }} @endif
@if ($errors->has('fax')) {{ $errors->first('fax') }} @endif

Leave the password fields blank if you don't want to change your password.


@if ($errors->has('password')) {{ $errors->first('password') }} @endif