@extends('layouts.panel.base') @section('hotel-active', 'kt-menu__item--active') @section('title', 'Agregar Hotel') @section('content')

Hotel

Agregar Hotel

{!! Form::open(['route' => ['hotels.store'], 'method' => 'POST', 'class'=>"kt-form", 'id' => 'hotel_form']) !!} {{ csrf_field() }} @if(count($errors) > 0) @endif @if (Session::has('error')) @endif
{{ Form::text('name', null, array('class'=>'form-control', 'id'=>'name')) }}
{{ Form::time('check_in', $hotel->check_in, array('class'=>'form-control', 'id'=>'check_in')) }}
{{ Form::time('check_out', $hotel->check_out, array('class'=>'form-control', 'id'=>'check_out')) }}
{{ Form::select('country', $countries, '', array('class'=>'form-control kt-select2','placeholder'=>'Seleccione País','id'=>'country')) }}
{{ Form::select('state', [], '', array('class'=>'form-control kt-select2 state', 'placeholder'=>'Seleccione estado', 'id'=>'state')) }}
{{ Form::select('city', [], '', array('class'=>'form-control kt-select2 city', 'placeholder'=>'Seleccione ciudad', 'id'=>'city')) }}
{{ Form::text('address', null, array('class'=>'form-control', 'id'=>'address')) }}
{!! Form::close(); !!}
@endsection @section('js') @endsection