@extends('admin.layout') @section('title', $project ? 'Edit Project' : 'Create Project') @section('content')
Back to Projects

{{ $project ? 'Edit Project' : 'Create New Project' }}

@csrf @if($project) @method('PUT') @endif
@error('name')

{{ $message }}

@enderror

URL: /project-slug

@error('slug')

{{ $message }}

@enderror

Max size: 5MB. Accepted formats: JPG, PNG, GIF, WebP.

@if($project?->thumbnail)
Thumbnail
@endif

Upload up to 5 images for the project gallery.

@php $existingImages = old('images', $project?->images->pluck('image')->toArray() ?? []); @endphp @for($i = 0; $i < 5; $i++) @if(isset($existingImages[$i]) && $existingImages[$i])
Gallery {{ $i+1 }}
@endif @endfor
Cancel
@endsection