@stack('head-script')
@if($global->rounded_theme)
@endif
{!! Form::open(['id'=>'createLead','class'=>'ajax-form','method'=>'POST']) !!}
@foreach ($ticketFormFields as $item) @if($item->field_type == 'textarea')
@lang('modules.tickets.'.$item->field_name)
@elseif($item->field_type == 'select') @if($item->field_name == 'type')
@lang('modules.tickets.'.$item->field_name)
@forelse($types as $type)
{{ ucwords($type->type) }}
@empty
@lang('messages.noTicketTypeAdded')
@endforelse
@else
@lang('modules.tickets.'.$item->field_name)
@lang('app.low')
@lang('app.medium')
@lang('app.high')
@lang('app.urgent')
@endif @else
@lang('modules.tickets.'.$item->field_name)
@endif @endforeach
@lang('app.save')
@lang('app.reset')
{!! Form::close() !!}