@extends('layouts.layout-admin') @section('content')

{{ __('Edit User') }}

{{ __('Edit Users') }}

@csrf {{method_field('PUT')}}
@if($errors->has('user_name'))

{{ $errors->first('user_name') }}

@endif
@if($errors->has('email'))

{{ $errors->first('email') }}

@endif
@if($errors->has('role'))

{{ $errors->first('role') }}

@endif
{{ __('Cancel') }}
@endsection @section('scripts') @endsection