@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.package.title_singular') }}
@method('POST') @csrf
@if($errors->has('is_active'))
{{ $errors->first('is_active') }}
@endif {{ trans('cruds.package.fields.is_active_helper') }}
@if($errors->has('tour_name'))
{{ $errors->first('tour_name') }}
@endif {{ trans('cruds.package.fields.tour_name_helper') }}
@if($errors->has('days'))
{{ $errors->first('days') }}
@endif {{ trans('cruds.package.fields.days_helper') }}
@if($errors->has('night'))
{{ $errors->first('night') }}
@endif {{ trans('cruds.package.fields.night_helper') }}
@if($errors->has('tour_overview'))
{{ $errors->first('tour_overview') }}
@endif {{ trans('cruds.package.fields.tour_overview_helper') }}
@if($errors->has('inclusions'))
{{ $errors->first('inclusions') }}
@endif {{ trans('cruds.package.fields.inclusions_helper') }}
@if($errors->has('exclusions'))
{{ $errors->first('exclusions') }}
@endif {{ trans('cruds.package.fields.exclusions_helper') }}
@if($errors->has('terms_and_conditions'))
{{ $errors->first('terms_and_conditions') }}
@endif {{ trans('cruds.package.fields.terms_and_conditions_helper') }}
@if($errors->has('images'))
{{ $errors->first('images') }}
@endif {{ trans('cruds.package.fields.images_helper') }}
@endsection @section('scripts') @endsection