@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

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

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

@endforeach


Cancel
@endsection