@extends('frontend.layouts.app') @section('content')

Last step

@include('front.includes.tour_info', ['tour' => $tour])
@lang('frontLang.price') (@lang('frontLang.per-pax')) @lang('frontLang.pax') @lang('frontLang.total-price')
{{ $tour->currency }} {{$tour->price}} {{$adult}} {{$currency}} {{$total_price}}

@lang('frontLang.contact-information')

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif

@lang('frontLang.pax-information')

{{ csrf_field() }} @for ($i = 0; $i < $adult; $i++)


@endfor
@endsection