×
@lang('modules.customFields.addField')
{!! Form::open(['url' => '' ,'method' => 'post', 'id' => 'add-edit-form','class'=>'form-horizontal']) !!}
@lang('modules.invoices.type')
@foreach ($customFieldGroups as $key => $item)
@lang('app.'.strtolower($item))
@endforeach
@lang('modules.customFields.label')
@lang('app.name')
@lang('app.required')
@lang('app.yes')
@lang('app.no')
@lang('modules.invoices.type')
{!! Form::select('type', [ 'text' => 'text', 'number' =>'number', 'password' => 'password', 'textarea' =>'textarea', 'select' =>'select', 'radio' =>'radio', 'date' =>'date', 'checkbox' => 'checkbox' ], '',['class' => 'form-control gender','id' => 'type']) !!}
@lang('app.value')
{{ Form::close() }}