@extends('app.layout') @section('sub_content')
@if($tarif->id)
@method('PATCH') @else @endif @csrf
{{ __('Code tarif') }}*
@if ($errors->has('code_tarif')) {{ $errors->first('code_tarif') }} @endif
{{ __('Type') }}*
@if ($errors->has('type')) {{ $errors->first('type') }} @endif
{{ __('Remise') }} (%)*
@if ($errors->has('remise')) {{ $errors->first('remise') }} @endif
{{ __('Prix brut') }}*
@if ($errors->has('prix_brut')) {{ $errors->first('prix_brut') }} @endif
{{ __('Prix net') }}*
@if ($errors->has('prix_net')) {{ $errors->first('prix_net') }} @endif
{{ __('Nbr') }}
@if ($errors->has('nbr')) {{ $errors->first('nbr') }} @endif
{{ __('Cancel') }}
@endsection