@extends('admin.layouts.app') @section('content')
Edit User
@csrf @method('put')
@if($errors->has('first_name'))
{{ $errors->first('first_name') }}
@endif
{{--
@if($errors->has('last_name'))
{{ $errors->first('last_name') }}
@endif
--}}
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
@if($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if($errors->has('password_confirmation'))
{{ $errors->first('password_confirmation') }}
@endif
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif
{!! Form::select('role', $roles,$user_role, array('class' => 'form-control')) !!} @if($errors->has('role'))
{{ $errors->first('role') }}
@endif
@if($errors->has('status'))
{{ $errors->first('status') }}
@endif
Back
@endsection