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

View Occupation

{{Form::open(array('url' => '/account/occupations/update', 'method' => 'PUT'))}}
{{Form::label('Occupation Code',array())}} {{Form::text('occupation_code',$request->occupation_code,array('readOnly' => 'true','required' => true,'class' =>'form-control'))}} {{Form::hidden('id',$request->id,array('readOnly' => 'true','required' => true,'class' =>'form-control'))}}
{{Form::label('occupation_name',array())}} {{Form::text('occupation_name',$request->occupation_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