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

Edit Occupation

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