@extends('layouts.master') @section('page_title', 'Create a New Industry') @section('content') {!! Form::open(['url' => action('SuperAdminSourceDataController@post_industry_create')]) !!}
{{ Form::page_header("Create a New Industry", "sourcedata") }}
{{ Form::button_link('Back', action('SuperAdminSourceDataController@show_industries'), 'back_btn') }}
{{ Form::label_styled('Industry Name:', 'source-data-label', \App\Helpers\FormComponentHelper::SIZE_LARGE) }} {{ Form::text_styled('industry_name', null, 'account-pages-text-input') }} {{ Form::hidden("active", 0) }} {{ Form::checkbox_styled('active', null, 'Active', null, 'source-data-check') }}

{{ Form::button_save('Next') }}
{!! Form::close() !!} @endsection