@extends('layouts.master') @section('page_title', 'Edit Industry') @section('content')
{{ Form::page_header("Edit Industry", "sourcedata") }}
{{ Form::button_link('Back', action('SuperAdminSourceDataController@show_industries'), 'back_btn') }}
{!! Form::model($industry, ['url' => action('SuperAdminSourceDataController@post_industry_edit', $industry)]) !!}

{{ Form::label_styled('Industry Name:', 'source-data-label', \App\Helpers\FormComponentHelper::SIZE_LARGE) }} {{ Form::text_styled('industry_name', null, 'account-pages-text-input md-lg', null) }} {{ Form::hidden("active", 0) }} {{ Form::checkbox_styled('active', null, 'Active', null, 'source-data-check') }}
{{ Form::button_save('Update Industry') }}
{!! Form::close() !!}
{{ Form::button_link('Add New Drivers', action('SuperAdminSourceDataController@driver_create', $industry)) }}
@include('shared.grids._grid_table')
@endsection @section('page_style') @endsection