@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.query.title_singular') }}
@method('POST') @csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.query.fields.name_helper') }}
@if($errors->has('mobile_no'))
{{ $errors->first('mobile_no') }}
@endif {{ trans('cruds.query.fields.mobile_no_helper') }}
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif {{ trans('cruds.query.fields.email_helper') }}
@if($errors->has('no_of_people'))
{{ $errors->first('no_of_people') }}
@endif {{ trans('cruds.query.fields.no_of_people_helper') }}
@if($errors->has('date_of_travel'))
{{ $errors->first('date_of_travel') }}
@endif {{ trans('cruds.query.fields.date_of_travel_helper') }}
@if($errors->has('no_of_days'))
{{ $errors->first('no_of_days') }}
@endif {{ trans('cruds.query.fields.no_of_days_helper') }}
@if($errors->has('from_location'))
{{ $errors->first('from_location') }}
@endif {{ trans('cruds.query.fields.from_location_helper') }}
@if($errors->has('to_location'))
{{ $errors->first('to_location') }}
@endif {{ trans('cruds.query.fields.to_location_helper') }}
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif {{ trans('cruds.query.fields.description_helper') }}
@if($errors->has('package'))
{{ $errors->first('package') }}
@endif {{ trans('cruds.query.fields.package_helper') }}
@endsection