@extends('layouts.app') @section('javascript') @endsection @section('content')

Create New User

{!! Former::horizontal_open()->id('edit-notification')->rules(['name' => 'required'])->method('POST')->action(route('users.store')) !!}

User Details

{!! Former::text('first_name')->label('First Name') !!} {!! Former::text('last_name')->label('Last Name') !!} {!! Former::text('email') !!}

Password

{!! Former::password('password') !!} {!! Former::password('password_confirmation')->label('Repeat Password') !!}
Cancel
{!! Former::close() !!}
@endsection