@extends('admin.layouts.app') @section('title', isset($gallery) ? 'Edit Image' : 'Add Image') @section('breadcrumb') @endsection @section('content')
@csrf @if(isset($gallery)) @method('PUT') @endif
Image Details
@if(isset($gallery) && $gallery->image)
@else
Click to choose an image
@endif
JPG, PNG, WEBP. Max 3MB.
@error('title')
{{ $message }}
@enderror
@foreach($categories as $cat)
Type or select an existing category
is_active ?? true) ? 'checked' : '' }}>
@endsection