Use this form to {{ ($is_new) ? 'add a new hotel' : 'edit this hotel'}}. Required fields are noted with a red asterisk,*. Click the Save button when finished to commit changes to the database.


{{ Form::open(array('url' => url('/admin/hotels') . '/' . ((!$is_new) ? $hotel->id : '0') . '/save', 'name' => 'add-edit-hotel', 'method' => 'post')) }} {{ Form::hidden('hotel_id', $hotel->id) }} {{ Form::label('name', 'Hotel Name', array('style' => '')) }} {{ Form::text('name', ($is_new) ? null : $hotel->name, array('style' => 'width: 300px;', 'data-required' => 'true', 'data-autofocus' => 'true')) }}

{{ Form::label('website', 'Website URL', array('style' => '')) }} {{ Form::text('website', ($is_new) ? null : $hotel->website, array('style' => 'width: 450px;')) }}

{{ Form::label('instructions', 'Instructions', array('style' => '')) }} {{ Form::text('instructions', ($is_new) ? null : $hotel->instructions, array('style' => 'width: 250px;')) }}

{{ Form::label('phone', 'Phone', array('style' => '')) }} {{ Form::text('phone', ($is_new) ? null : $hotel->phone, array('style' => 'width: 175px;')) }}

{{ Form::label('email', 'Email', array('style' => '')) }} {{ Form::text('email', ($is_new) ? null : $hotel->email, array('style' => 'width: 250px;')) }}

{{ Form::label('local_text', 'Touring', array('style' => '')) }} {{ Form::text('local_text', ($is_new) ? null : $hotel->local_text, array('style' => 'width: 300px;')) }}

{{ Form::label('local_website', 'Touring URL', array('style' => '')) }} {{ Form::text('local_website', ($is_new) ? null : $hotel->local_website, array('style' => 'width: 450px;')) }}

{{ Form::label('is_published', 'Published', array('style' => '')) }} {{ Form::checkbox('is_published', true, ($is_new) ? true : $hotel->is_published, array('style' => 'margin-right: 20px;')) }} Check to show this hotel's information on enabled activity pages
Activity
Show?
HQ?
Group Title
@foreach ($hotel->data as $act_slug => $act_data)
{{ Helpers::getActivityName($act_slug) }}
is_shown) checked="checked" @endif />
is_hq) checked="checked" @endif />
@endforeach
{{ Form::close() }}