@extends('admin.masters.base') @section('styles') @stop @section('pagetitle') User new entry @stop @section('crumbs')
  • Users
  • New User
  • @stop @section('pagecontents')

    Create New User

    Cancel

    @if (count($errors) > 0)
    Whoops! There were some problems with your input.

      @foreach ($errors->all() as $error)
    • {{ $error }}
    • @endforeach
    @endif {!! Form::open(['url' => '/admin/users', 'id' => 'regForm']) !!}
    {!! Form::text('firstname', null, ['class' => 'form-control', 'required']) !!}
    {!! Form::text('lastname', null, ['class' => 'form-control', 'required']) !!}
    {!! Form::close() !!}
    @stop @section('scripts') @stop