@extends('layouts.designer.desginer') @section('title', 'Drawings Update') @section('content')

Upload / Manage Drawings

{{-- Success Message --}} @if(session('success'))
{{ session('success') }}
@endif {{-- Error Message --}} @if(session('error'))
{{ session('error') }}
@endif {{-- Upload Form --}}
@csrf
{{-- Existing Images --}}
Existing Drawings
@if($project->drawings_img && count(json_decode($project->drawings_img)))
@foreach(json_decode($project->drawings_img) as $img)
@csrf @method('DELETE')
@endforeach
@else

No drawings uploaded yet.

@endif
@endsection