@extends('admin.master') @section('main')

Add New Accomodation

@if( session('messages') )

{{ session('messages') }}

@endif
@csrf
@if($errors->has('roomType'))
{{ $errors->first('roomType') }}
@endif
@if($errors->has('roomSize'))
{{ $errors->first('roomSize') }}
@endif
@if($errors->has('noRoom'))
{{ $errors->first('noRoom') }}
@endif
@if($errors->has('occupancy'))
{{ $errors->first('occupancy') }}
@endif
@if($errors->has('rakeRate'))
{{ $errors->first('rakeRate') }}
@endif
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if($errors->has('image'))
{{ $errors->first('image') }}
@endif
@if($errors->has('accommodation_gallaries'))
{{ $errors->first('accommodation_gallaries') }}
@endif
@endsection