@extends('layouts.admin') @section('pageTitle') Best Insurance | Administrators @stop @section('content')

Create Super User

{{Form::open(array('url' => '/account/bi-super-users/create', 'method' => 'POST'))}}
{{Form::label('First Name',array())}} {{Form::text('first_name',null,array('class' =>'form-control'))}} @if($errors->has('first_name')) @endif
{{Form::label('Last Name',array())}} {{Form::text('last_name',null,array('class' =>'form-control'))}} @if($errors->has('last_name')) @endif
{{Form::label('Email',array())}} {{Form::text('email',null,array('class' =>'form-control'))}} @if($errors->has('email')) @endif
{{Form::submit('Submit',array('class' => 'btn btn-success'))}}
{{Form::close()}}
@stop @section('pageBottomJs') @stop