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

Agregar Precio

{!! Form::open(['route' => ['panel.hotels.room.price.save', encrypt($query->id)], 'method' => 'POST', 'class'=>"kt-form", 'id' => 'hotel_form']) !!} {{ csrf_field() }} @if(count($errors) > 0) @endif @if (Session::has('error')) @endif
{{ Form::select('type_price', ['Por Fecha'=>'Por Fecha', 'General'=>'General'], '', array('class'=>'form-control kt-select2 type_price', 'placeholder'=>'Seleccione', 'id'=>'type_price')) }}
{!! Form::close(); !!}
@endsection @section('js') @endsection