@extends('layouts.base') @section('title') Senecartours - Réservations @endsection @push('css') @endpush @section('content')

Réservation

@csrf
@if ($errors->has('type_reservation')) {{ $errors->first('type_reservation') }} @endif
@if ($errors->has('date_debut')) {{ $errors->first('date_debut') }} @endif
@if ($errors->has('date_retour')) {{ $errors->first('date_retour') }} @endif
@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('birth_date')) {{ $errors->first('birth_date') }} @endif
{{--
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
--}}

Validation !

{{--

Votre reservation est bien pris en compte.

--}}

VOTRE CHOIX

{{ $vehicule->libelle }}

{{__('messages.overview')}}

  • Fabriquant
    {{ $vehicule->modele->libelle }}
  • Modele
    {{ $vehicule->modele->libelle }}
  • Couleur
    {{ $vehicule->couleur }}
  • Type de véhicule
    4x4
  • Transmission
    {{ $vehicule->type_transmission }}
  • Année
    {{ $vehicule->annee }}
  • Nombre de Places
    {{ $vehicule->places }}
  • Type de carburant
    {{ $vehicule->type_carburant }}
  • Nombre de Portes
    {{ $vehicule->portes }}
  • Nombre de Cylindres
    {{ $vehicule->cylindres }}
  • Confort
    {{ $vehicule->confort }}
@push('scripts')