@extends('admin.layout.master') @section('custom_style') @endsection @section('content') @include('flash-message')
@if ($errors->any())
@endif
Room Type Create
{{-- Rate List --}}
{{ Form::open(['route'=>['frontdesk.room_type.store'],'method'=>'post', 'class'=>'form-horizontal']) }}
{{ Form::text('name', null,['class'=>'form-control ','id'=>'room_type','required'] )}} @error('name') {{ $message }} @enderror
{{ Form::close() }}
Room Type List
@if (!empty($room_types)) @php $i =1; @endphp @foreach ($room_types as $room_type) @endforeach @endif
#SL Name Action
{{ $i++ }} {{ $room_type->name}}
@endsection @section('script') @endsection