@if(checkRole(['owner']))
{{ Form::label('branch_id', getphrase('branch')) }} * {{Form::select('branch_id', $branches, null, ['class'=>'form-control', 'id'=>'branch_id', 'ng-model'=>'branch_id', 'required'=> 'true', 'ng-class'=>'{"has-error": formAssets.branch_id.$touched && formAssets.branch_id.$invalid}' ])}}
{!! getValidationMessage()!!}
@else {{ Form::hidden('branch_id', getUserRecord()->branch_id, array('id'=>'branch_id')) }} @endif
{{ Form::label('asset_type', getphrase('asset_type')) }} * {{ Form::text('asset_type', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => 'Books/Magazines,CD etc')) }}
{{ Form::label('fine_per_day', getphrase('fine_per_day')) }} * {{ Form::text('fine_per_day', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => '10')) }}
{{ Form::label('description', getphrase('description')) }} {{ Form::textarea('description', $value = null , $attributes = array('class'=>'form-control', 'rows'=>'5', 'placeholder' => 'Fine description')) }}