@extends('layouts.admin') @section('pageTitle') Best Insurance | Industries @stop @section('content')

Edit Industry

{{Form::open(array('url' => '/account/industries/update', 'method' => 'PUT'))}}
{{Form::label('industry_code',array())}} {{Form::text('industry_code',$request->industry_code,array('required' => true,'class' =>'form-control'))}} {{Form::hidden('id',$request->id,array('required' => true,'class' =>'form-control'))}}
{{Form::label('industry_name',array())}} {{Form::textArea('industry_name',$request->industry_name,array('required' => true,'class' =>'form-control'))}}
{{Form::label('Status',array())}} {{Form::checkbox('is_active',null,$request->is_active)}}
{{Form::submit('Submit',array('class' => 'btn btn-success'))}}
{{Form::close()}}
@stop @section('pageBottomJs') @stop