{{-- mainLayouts extends --}} @extends('layouts.contentLayoutMaster') {{-- Page title --}} @section('title', 'User') @section('content')
@csrf @method('PUT')
Edit User @error('name') {{$message}} @enderror
Name * @if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
Email * @if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
Phone Number
Password * @if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
{{--
--}} {{-- --}}
Cancel
@endsection {{-- --}}