{!! $call['id'] !!}
{!! $call['user_id'] !!}
{!! $call['user_type'] !!}
{!! $call['dbupload_id'] !!}
{!! $call['district'] !!}
{!! $call['agent_id'] !!}
{!! $call['name'] !!}
{!! $call['phone'] !!}
{!! $call['mobile'] !!}
{!! $call['email'] !!}
{!! $call['description'] !!}
{!! $call['customer_type'] !!}
{!! $call['category'] !!}
{!! $call['status'] !!}
{!! $call['substatus'] !!}
{!! $call['hotcall'] !!}
{!! $call['notes'] !!}
{!! $call['slug'] !!}
{!! $call['created_at'] !!}
{!! $call['updated_at'] !!}
{!! $call['deleted_at'] !!}
{!! Form::numeric('district')
-> label(trans('call::call.label.district'))
-> placeholder(trans('call::call.placeholder.district'))!!}
{!! Form::select('agent_id')
-> options(trans('call::call.options.agent_id'))
-> label(trans('call::call.label.agent_id'))
-> placeholder(trans('call::call.placeholder.agent_id'))!!}
{!! Form::text('name')
-> label(trans('call::call.label.name'))
-> placeholder(trans('call::call.placeholder.name'))!!}
{!! Form::text('phone')
-> label(trans('call::call.label.phone'))
-> placeholder(trans('call::call.placeholder.phone'))!!}
{!! Form::text('mobile')
-> label(trans('call::call.label.mobile'))
-> placeholder(trans('call::call.placeholder.mobile'))!!}
{!! Form::text('email')
-> label(trans('call::call.label.email'))
-> placeholder(trans('call::call.placeholder.email'))!!}
{!! Form::textarea('description')
-> label(trans('call::call.label.description'))
-> dataUpload(trans_url($call->getUploadURL('description')))
-> addClass('html-editor')
-> placeholder(trans('call::call.placeholder.description'))!!}
{!! Form::select('customer_type')
-> options(trans('call::call.options.customer_type'))
-> label(trans('call::call.label.customer_type'))
-> placeholder(trans('call::call.placeholder.customer_type'))!!}
{!! Form::select('category')
-> options(trans('call::call.options.category'))
-> label(trans('call::call.label.category'))
-> placeholder(trans('call::call.placeholder.category'))!!}
{!! Form::select('status')
-> options(trans('call::call.options.status'))
-> label(trans('call::call.label.status'))
-> placeholder(trans('call::call.placeholder.status'))!!}
{!! Form::select('substatus')
-> options(trans('call::call.options.substatus'))
-> label(trans('call::call.label.substatus'))
-> placeholder(trans('call::call.placeholder.substatus'))!!}
{!! Form::inline_checkboxes('hotcall[]')
-> checkboxes(trans('call::call.options.hotcall'))
-> label(trans('call::call.label.hotcall'))!!}
{!! Form::textarea ('notes')
-> label(trans('call::call.label.notes'))
-> placeholder(trans('call::call.placeholder.notes'))!!}