@extends('layouts.master') @section('title',__('Edit')." ". $user->name) @section('breadcum') @endsection @section('maincontent')
@if ($errors->any()) @endif
{{ __('Back') }}
{{__('Edit User')}}
{!! Form::model($user, ['method' => 'PATCH', 'action' => ['UsersController@update', $user->id], 'files' => true]) !!}

Personal Details

Address

{!! Form::close() !!}
@endsection @section('script') @endsection