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

View Industry

{{Form::open(array('url' => '/account/industries/update', 'method' => 'PUT'))}}
{{Form::label('industry code',array())}} {{Form::text('industry_code',$request->industry_code,array('readOnly' => 'true','required' => true,'class' =>'form-control'))}} {{Form::hidden('id',$request->id,array('readOnly' => 'true','required' => true,'class' =>'form-control'))}}
{{Form::label('industry_name',array())}} {{Form::textArea('industry_name',$request->industry_name,array('readOnly' => 'true','required' => true,'class' =>'form-control'))}}
{{Form::label('Status : ',array())}} @if($request->is_active == '1') @else @endif
{{Form::close()}}
@stop @section('pageBottomJs') @stop