@extends('layouts.app')
@section('title', 'Make reservation')
@section('navbar', View::make('inc.navbar'))
@section('content')
  @if (session('status'))
    
      {{ session('status') }}
    
  @endif
  @if ($errors->any())
    
      All fields must be filled and conditions satisfied!
    
  @endif
@endsection()
@section('styles')
  
@endsection
@section('scripts')
  
  
  {{----}}
@endsection