@extends('admin.layouts.master') @section('page-title') Edit User @endsection @section('main-content')
Edit User
@csrf @method('put')
@if ($errors->has('name')) @endif
@if ($errors->has('email')) @endif
@if ($errors->has('phone_number')) @endif
@if ($errors->has('address')) @endif
@error('role_id')
{{ $message }}
@enderror
Back
@endsection @section('script') @endsection