@extends('layouts.master') @section('title') {{ trans_choice('general.edit',1) }} {{ trans_choice('general.other_income',1) }} {{ trans_choice('general.type',1) }} @endsection @section('content')

{{ trans_choice('general.edit',1) }} {{ trans_choice('general.other_income',1) }} {{ trans_choice('general.type',1) }}

{!! Form::open(array('url' => url('other_income/type/'.$other_income_type->id.'/update'), 'method' => 'post', 'class' => 'form-horizontal')) !!}
{!! Form::label('name',trans_choice('general.name',1),array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('name',$other_income_type->name, array('class' => 'form-control', 'placeholder'=>"",'required'=>'required')) !!}
{!! Form::close() !!}
@endsection