@extends('layouts.app') @section('title', 'User Management') @section('styles') @endsection @section('content') @include('pages.fir-conversions.components.header-title', [ 'titleOne' => 'User Management', 'titleTwo' => 'Edit User', 'menus' => [['name' => 'User List', 'route' => route('user-management.index')]], ])
@csrf

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

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

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

@if ($errors->has('mobile')) {{ $errors->first('mobile') }} @endif

@if ($errors->has('password')) {{ $errors->first('password') }} @endif

@if ($errors->has('role_id')) {{ $errors->first('role_id') }} @endif

@if ($errors->has('status')) {{ $errors->first('status') }} @endif
@endsection @section('scripts') @endsection