{{ Form::customText('checkInAt', \App\Localization\CarbonExtensions::toUserLocal($booking->check_in_at), ['class' => 'form-control datetimepicker-control']) }} {{ Form::customText('checkOutAt', \App\Localization\CarbonExtensions::toUserLocal($booking->check_out_at), ['class' => 'form-control datetimepicker-control']) }} {{ Form::customSelect('room', $rooms, $booking->base_room_id) }} {{ Form::customSelect('contact', $contacts, $booking->guest_contact_id) }} {{ Form::customSelect('bookingType', $bookingTypes, $booking->guest_booking_type_id) }} {{ Form::customText('numberOfNights', $booking->number_of_nights) }} {{ Form::customText('daysOfNoLimitDiving', $booking->days_of_no_limit_diving) }} {{ Form::customText('comments', $booking->comments) }} {{ Form::customSelect('group', $groups, $booking->guest_group_id) }}