@extends('layouts.app') @section('title') Create User @endsection @section('content')

Add new user

Add new user and assign role.
@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
Back
@endsection