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

{{trans_choice('general.add',1)}} {{trans_choice('general.custom_field',1)}}

{!! Form::open(array('url' => url('custom_field/store'), 'method' => 'post', 'name' => 'form')) !!}
{!! Form::label('category',trans_choice('general.category',1),array('class'=>'')) !!} {!! Form::select('category',array('repairs'=>trans_choice('general.add',1).' '.trans_choice('general.repair',1)),'repairs', array('class' => 'form-control', 'placeholder'=>trans_choice('general.select',1),'required'=>'required')) !!}
{!! Form::label('name',trans_choice('general.field',1).' '.trans_choice('general.name',1),array('class'=>'')) !!} {!! Form::text('name',null, array('class' => 'form-control', 'placeholder'=>trans_choice('general.field',1).' '.trans_choice('general.name',1),'required'=>'required')) !!}
  {{trans_choice('general.description',1)}} {{trans_choice('general.allowed_value',2)}}
{{trans_choice('general.text_field_description',1)}} {{trans_choice('general.any_value',1)}}
{{trans_choice('general.date_field_description',1)}} {{trans_choice('general.only_date',1)}}
{{trans_choice('general.number_field_description',1)}} {{trans_choice('general.only_number',1)}}
{{trans_choice('general.decimal_field_description',1)}} {{trans_choice('general.only_decimal',1)}}
{{trans_choice('general.textarea_description',1)}} {{trans_choice('general.any_value',1)}}

{{trans_choice('general.separate_with_comma',1)}}

{{trans_choice('general.separate_with_comma',1)}}

{{trans_choice('general.separate_with_comma',1)}}

{!! Form::close() !!}
@endsection