@extends('users.base') @section('action-content')
Add new user
{{ csrf_field() }}
@if ($errors->has('username')) {{ $errors->first('username') }} @endif
@if ($errors->has('clientaccount_number')) {{ $errors->first('clientaccount_number') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('user_type')) {{ $errors->first('user_type') }} @endif
@if ($errors->has('firstname')) {{ $errors->first('firstname') }} @endif
@if ($errors->has('lastname')) {{ $errors->first('lastname') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endsection