@extends('layouts.master') @section('page_title', 'Create New Drivers') @section('content') {!! Form::open(['url' => action('SuperAdminSourceDataController@post_driver_create', $industry)]) !!}
{{ Form::page_header("Create New Driver", "sourcedata") }}
{{ Form::button_back() }}

{{ Form::label_styled('Driver Name:', 'source-data-label', \App\Helpers\FormComponentHelper::SIZE_LARGE) }} {{ Form::text_styled('new_driver_0', null, 'account-pages-text-input md-lg', null) }} {{ Form::hidden('active_0', 0) }} {{ Form::checkbox('active_0', 1, null, ['class' => 'brand-checkbox no-fade']) }}

{{ Form::button_ex('Add Another', null, 'add-new-driver') }} {{ Form::button_save('Done') }}
{!! Form::close() !!} @endsection @section('page_script') @endsection