@extends('layouts.app') @section('content')
Add New users to {{ $settings->site_name }} community
{{ csrf_field() }}
Username
@if ($errors->has('username'))
{{ $errors->first('username') }}
@endif
FullName
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
E-Mail Address
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
Phone number
@if ($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
Password
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
Confirm Password
@if ($errors->has('password_confirmation'))
{{ $errors->first('password_confirmation') }}
@endif
Save User
@endsection