@extends('layouts.scaffold')
@section('main')
Create Adminuser
@if ($errors->any())
{{ implode('', $errors->all('- :message
')) }}
@endif
{{ Form::open(array('route' => 'adminusers.store', 'id' => 'createAdminusers')) }}
-
{{ Form::label('first_name', 'First name:') }}
{{ Form::text('first_name') }}
-
{{ Form::label('last_name', 'Last name:') }}
{{ Form::text('last_name') }}
-
{{ Form::label('user_email', 'User email:') }}
{{ Form::text('user_email') }}
-
{{ Form::label('address', 'Address:') }}
{{ Form::text('address') }}
-
{{ Form::label('phone', 'Phone:') }}
{{ Form::text('phone') }}
-
{{ Form::label('alter_email', 'Alternate email:') }}
{{ Form::text('alter_email') }}
-
{{ Form::submit('Submit', array('class' => 'btn btn-info')) }}
{{ link_to_route('adminusers.index', 'Cancel', null, array('class' => 'btn btn-info')) }}
{{ Form::close() }}
@if ($scripts = 'js/adminusers/create_adminusers.js') @endif
@stop