@extends('admin.layouts.app') @section('content')

Edit User

@include('admin.users.top_action_bar')

Edit User

{{ method_field('PATCH') }} {{ csrf_field() }}
{!! $errors->has('user_name') ? 'Name field required' : '' !!}
{!! $errors->has('user_email') ? 'Email field required' : '' !!}
Change only if you are changing password. Otherwise leave blank to use old password. {!! $errors->has('user_password') ? 'Password should be at least 6 characters long' : '' !!}
{!! $errors->has('user_designation') ? 'Designation field required' : '' !!}
{!! $errors->has('user_role') ? 'Role field required' : '' !!}
{!! $errors->has('user_status') ? 'Status field required' : '' !!}
@endsection @section('footer_extra') @endsection