@extends('app.layout') @section('sub_content')
@if($accessoirce_service->id)
@method('PATCH') @else @endif @csrf
{{ __('Reservation') }}
@if ($errors->has('reservation_id')) {{ $errors->first('reservation_id') }} @endif
{{ __('Article') }}
@if ($errors->has('article_id')) {{ $errors->first('article_id') }} @endif
{{ __('Qte') }}
@if ($errors->has('qte')) {{ $errors->first('qte') }} @endif
{{ __('Prix') }}
@if ($errors->has('prix')) {{ $errors->first('prix') }} @endif
{{ __('Remise') }} (%)
@if ($errors->has('remise')) {{ $errors->first('remise') }} @endif
{{ __('Total') }}
@if ($errors->has('total')) {{ $errors->first('total') }} @endif
{{ __('Cancel') }}
@endsection @section('script') @endsection