@extends('admin.layouts.modal') {{-- Content --}} @section('content') {{-- Create User Form --}}
{{{ $errors->first('username', ':message') }}}
{{{ $errors->first('email', ':message') }}}
{{{ $errors->first('password', ':message') }}}
{{{ $errors->first('password_confirmation', ':message') }}}
@if ($mode == 'create') @else @endif {{{ $errors->first('confirm', ':message') }}}
Select a group to assign to the user, remember that a user takes on the permissions of the group they are assigned.
{{ (isset($user) ? 'Close' : 'Cancel') }} @if (!empty($user)) Create @endif
@stop