@extends('templates.dashboard') @section('dashboard')
@if (session()->has('success'))
{{ session()->get('success') }}
@endif @if ($errors->any())
@endif
Devis de {{ $post->nom }} fait Le {{ $post->created_at }}
@csrf

{{ App::getLocale() === 'ar' ? 'نموذج التدخل' : (App::getLocale() === 'en' ? 'Intervention Form' : 'Formulaire d\'Intervention') }}

@if (session()->has('success'))
{{ session()->get('success') }}
@endif @if (session()->has('delete'))
{{ session()->get('delete') }}
@endif


@endsection