@php
$event_types = ['event1' => 'Event 1', 'event2' => 'Event 2']
@endphp
@php
$form_id = 'contact_add_form';
if(isset($quick_add)){
$form_id = 'quick_add_contact';
}
@endphp
{!! Form::open(['url' => action('ContactController@store'), 'method' => 'post', 'id' => $form_id, 'enctype' => 'multipart/form-data']) !!}
{!! Form::label('image', __('contact.image') . ':*') !!}
{!! Form::file('image', ['id' => 'upload_image', 'accept' => 'image/*']); !!}
{!! Form::close() !!}