{!! Form::open(['url' => action('BookingSourceController@update', $source->id), 'method' => 'post', 'id' => 'source_edit_form' , 'files' => true]) !!}
{!! Form::label('booking_type', __('Booking Type') . ':*') !!}
{!! Form::select('booking_type', ['Wedding' => 'Wedding', 'Business Seminar' => 'Business Seminar', 'Allocation' => 'Allocation', 'Groups' => 'Groups', 'Instant' => 'Instant', 'Advance' => 'Advance', 'Test booking type' => 'Test booking type'], $source->booking_type, ['class' => 'form-input', 'id'=>'seachable-select',
'placeholder' => __('Please Select One'),
'required']); !!}
{!! Form::label('name', __('Booking Source') . ':*') !!}
{!! Form::text('name', $source->name, ['class' => 'form-input',
'required']); !!}
{!! Form::label('rate', __('Rate') . ':*') !!}
{!! Form::number('rate', $source->rate, ['class' => 'form-input',
'required']); !!}
{!! Form::close() !!}