@extends('app.layout') @section('sub_content')
@if($reservation_detail->id)
@method('PATCH') @else @endif @csrf
{{ __('Reservation') }}
@if ($errors->has('reservation_id')) {{ $errors->first('reservation_id') }} @endif
{{ __('Pet') }}
@if ($errors->has('pet_id')) {{ $errors->first('pet_id') }} @endif
{{ __('Tarifs') }}
@if ($errors->has('code_tarif')) {{ $errors->first('code_tarif') }} @endif
{{ __('Date debut') }}
@if ($errors->has('date_debut')) {{ $errors->first('date_debut') }} @endif
{{ __('Date fin') }}
@if ($errors->has('date_fin')) {{ $errors->first('date_fin') }} @endif
{{ __('Mt. jour') }}
@if ($errors->has('mt_jour')) {{ $errors->first('mt_jour') }} @endif
{{ __('Nb jour') }}
@if ($errors->has('nb_jour')) {{ $errors->first('nb_jour') }} @endif
{{ __('Remise') }} (%)
@if ($errors->has('remise')) {{ $errors->first('remise') }} @endif
{{ __('Total') }}
@if ($errors->has('total')) {{ $errors->first('total') }} @endif
{{ __('Cancel') }}
@endsection @section('script') @endsection