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

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

{!! Form::open(array('url' => url('custom_field/'.$custom_field->id.'/update'), 'method' => 'post', 'name' => 'form')) !!}
{!! Form::label('category',trans_choice('general.category',1),array('class'=>'')) !!} {!! Form::select('category',array('members'=>trans_choice('general.add',1).' '.trans_choice('general.member',1),'events'=>trans_choice('general.add',1).' '.trans_choice('general.event',1)),$custom_field->category, 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',$custom_field->name, 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