@if (session()->has('message'))
{{ session('message') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if(isset($alreadySubmitted) && $alreadySubmitted || isset($Submitted) && $Submitted)
✅ Photos have been successfully submitted. Thank you! Our claims department will be in touch with you shortly.
@else @if(isset($estimate) && $estimate=='NO') Estimate : NO @elseif(isset($estimate) && $estimate=='YES') Estimate : YES @endif {{-- Start Screen --}} @if(!isset($started) || !$started)
Welcome to Photo upload Tool!

Please click the start button to begin step-by-step instructions on uploading photos of your vehicle to our claims department. You'll find instructions and examples to help you take a corresponding photo. When all of the necessary photos have been attached. You will be contacted by our claims department soon.

Photos must be taken in landscape view as shown below.


Are you writing the estimate on this file?


  
@else {{-- Steps --}} @foreach($steps as $index => $step)

Step {{ $currentStep }} of {{ $totalSteps }}

{{ $step['title'] }}

{{ $step['description'] ?? '' }}

@if($step['required']=='YES')(*mandatory)@endif {{-- Dropzone --}} @if(!isset($savedFiles[$index]) || count($savedFiles[$index]) === 0)

Drag & drop files here or click to select

@endif {{-- Loading --}}
Uploading files...
{{-- File Previews --}}
{{-- Saved files --}} @if(isset($savedFiles[$index]) && count($savedFiles[$index]) > 0) @foreach($savedFiles[$index] as $savedIndex => $file)
{{-- Remove Button --}}
@endforeach @else {{-- Default Preview (hint/example image) --}}
Default Preview
@endif
@endforeach {{-- Navigation --}}
@if($currentStep<$totalSteps) @else @endif
@endif @endif