@extends('admin.layout') @section('content')

Edit Project

@csrf @method('PUT') {{-- BASIC DETAILS --}}

{{-- EXISTING IMAGES --}} @if($project->images->count())
@foreach($project->images as $img)
@endforeach
@endif {{-- ADD NEW IMAGES --}}
Uploading new images will append to existing ones

{{-- RICH TEXT SECTIONS --}}

{{-- STATUS --}}
status ? 'checked' : '' }}>
Back
@endsection @section('scripts') @endsection