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

{{ __('User Role') }}

{{ __('Edit User & Role') }}

@csrf

{{ __('Upload 70X70 (Pixel) Size image for best quality. Only jpg, jpeg, png image is allowed.') }}

@if ($errors->has('image'))

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

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

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

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

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

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

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

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

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

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

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

@endif
@endsection