@extends('backend.layouts.master') @section('title', 'Edit Project - Admin Panel') @section('admin-content')

Edit Project

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')

@if ($project->image) Project Image @else

No image uploaded

@endif
{{--
--}}
@if($project->term_condition)

Current file: View Terms 📄

@endif
@if($project->balance_sheet)

Current file: View Balance Sheet 📄

@endif

Project Progress
@foreach ($project->progressImages as $index => $progress)

@foreach ($progress->images as $imageIndex => $image) Progress Image title) }}" placeholder="Enter title for image"> @endforeach

@endforeach


Video Progress
@if(count($project->progressVideos) > 0) @foreach($project->progressVideos as $index => $video)
{{----}}
@endforeach @else

@endif
{{--

--}} Cancel
@endsection