@extends('admin.layout.app') @section('title', 'Edit Project') @section('content')
Edit Project
Back
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')

@if($project->featured_image)
@endif
@if($project->images->count())
@foreach($project->images as $img) @endforeach
@endif
@endsection @push('scripts') @endpush