{!! Form::open(['url' => action([\Modules\Crm\Http\Controllers\PhoneListController::class, 'store']), 'method' => 'post', 'id' => 'phone_list_form']) !!}

@lang('crm::lang.add_phone_number')

{!! Form::label('mobile_number', __('lang_v1.contact_no') . ':*') !!} {!! Form::text('mobile_number', null, ['class' => 'form-control', 'placeholder' => '09123456789']) !!}
{!! Form::label('mobile_numbers', __('crm::lang.bulk_phone_numbers')) !!} {!! Form::textarea('mobile_numbers', null, ['class' => 'form-control', 'rows' => 5, 'placeholder' => __('crm::lang.bulk_phone_numbers_help')]) !!}

@lang('crm::lang.bulk_phone_numbers_hint')

{!! Form::label('contact_name', __('contact.name')) !!} {!! Form::text('contact_name', null, ['class' => 'form-control']) !!}
{!! Form::label('assigned_to', __('crm::lang.assgined')) !!} {!! Form::select('assigned_to', $users, null, ['class' => 'form-control select2', 'placeholder' => __('messages.please_select'), 'style' => 'width:100%;']) !!}
{!! Form::label('notes', __('crm::lang.description')) !!} {!! Form::textarea('notes', null, ['class' => 'form-control', 'rows' => 2]) !!}
{!! Form::close() !!}