@extends('admin.layouts.layouts') @section('title', 'Edit | Admin Users') @section('content')
{!! Form::open([ 'route' => ['admin-users.update', $user->id], 'method' => 'POST', 'id' => 'validate_form_add_user', 'class' => 'forms-sample', 'enctype' => 'multipart/form-data', ]) !!} {!! Form::hidden('id', $user->id, ['id' => 'editId']) !!}
{{ $errors->first('name') }}
{{ $errors->first('mobile') }}
{{ $errors->first('email') }}
@if (isset($user->profile_photo_path)) profile_photo_path}") }}" style="width:50px;height:50px;"> @endif {{ $errors->first('profile_photo_path') }}
{{--
{{ $errors->first('role') }}
--}}
Cancel {{ Form::close() }}
@endsection @section('page-js') @endsection