@extends('master.app') @section('title', 'Create User') @section('body')
Create User
Back
@include('general.valert') @if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf

Assign Roles
@forelse($roles as $id => $name)
@empty
No roles found.
@endforelse
@endsection