@extends('layouts.master') @section('page_title', 'ADMIN: Create User') @section('content')
{{ Form::page_header("ADMIN: Create User", "settings") }}
{{ Form::open(['url' => action('SuperAdminBusinessController@post_user_create', compact('business'))]) }} @if(session('business')) {{ Form::hidden('from_edit_business',$business->business) }} @endif {{ Form::label_title('Name') }} {{ Form::label_title('Contact Info') }} {{ Form::label_title('Role') }} {{ Form::label_title('Title') }} {{ Form::row_checkbox_inline('main', 'Main Contact', 0, 0, 12,\App\Helpers\FormComponentHelper::SIZE_MEDIUM) }} {{ Form::row_checkbox_inline('can_login', 'User can log into the system', 1, 0, 12,\App\Helpers\FormComponentHelper::SIZE_MEDIUM) }} {{ Form::separator_row_bottom("grey-divider") }}
{{ Form::button_save() }} {{ Form::button_link('Cancel', action('SuperAdminBusinessController@users', compact('business')), 'cancel_btn') }}
{{ Form::close() }}
@endsection