@extends('layouts.front') @section('title', 'Checkout - ToursTravel Kenya') @section('page') @include('partials.navbar')

Secure Checkout

Personal Information

Fill in your details to complete the booking

@csrf
@if ($errors->has('firstname'))
{{ $errors->first('firstname') }}
@endif
@if ($errors->has('lastname'))
{{ $errors->first('lastname') }}
@endif
@if ($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif

Your Package

Tour booking details

Tour Total
{{ $destinations->title }} {{ $destinations->pricing }}
Subtotal {{ $destinations->pricing }}
Total {{ $destinations->pricing }}

Can't wait to start your vacation?

Proceed to Pay
Secure payments powered by Stripe
@include('partials.footer') @endsection