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

{{trans_choice('general.add',1)}} {{trans_choice('general.asset',1)}} {{trans_choice('general.type',1)}}

{!! Form::open(array('url' => url('asset/type/store'), 'method' => 'post', 'class' => 'form-horizontal')) !!}
{!! Form::label('name',trans_choice('general.name',1),array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('name',null, array('class' => 'form-control', 'placeholder'=>"",'required'=>'required')) !!}
{!! Form::label('type',trans_choice('general.category',1),array('class'=>'col-sm-2 control-label')) !!}
{!! Form::select('type',array('current'=>trans_choice('general.current',1).' '.trans_choice('general.asset',1),'fixed'=>trans_choice('general.fixed',1).' '.trans_choice('general.asset',1),'intangible'=>trans_choice('general.intangible',1).' '.trans_choice('general.asset',1),'investment'=>trans_choice('general.investment',1).' '.trans_choice('general.asset',1),'other'=>trans_choice('general.other',1).' '.trans_choice('general.asset',1)),null, array('class' => 'form-control', ''=>"",'required'=>'required')) !!}
{!! Form::close() !!}
@endsection