@php
$event_types = ['event1' => 'Event 1', 'event2' => 'Event 2']
@endphp
{!! Form::open(['url' => action('ContactController@update', [$contact->id]), 'method' => 'PUT', 'id' => 'contact_edit_form']) !!}
{!! Form::label('status', 'Contact Status' . ':*') !!}
{!! Form::hidden('status', 0, null); !!}
{!! Form::checkbox('status', 1, $contact->status , [ 'class' => 'input-icheck']); !!} {{ __( 'Active Contact' ) }}
{!! Form::close() !!}