@extends('layouts.scaffold')
@section('title')
Add Adminuser|Golars Networks
@stop
@section('main')
@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('user_password','Password: *') }}
{{ Form::password('user_password')}}
-
{{ Form::label('cpassword', 'Confirm Password: *') }}
{{ Form::password('cpassword') }}
-
{{ 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::label('user_status', 'Select Status:') }}
{{ Form::select('user_status', array('selectstatus' => 'Select Status', 'active' => 'Active', 'inactive' => 'Inactive')) }}
-
{{ 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