@extends('layouts.masterLayout.app') @section('content')

Create User123

@csrf @method('PUT')
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@error('password') {{ $message }} @enderror
Role:
@endsection