@extends('admin.layout.app') @section('content')
{{-- Card --}}

Edit Brand

@csrf @method('PUT') {{-- Current Images --}} @if(isset($brands->image))
{{ $brands->imagealt ?? 'Brand Image' }}
@endif {{-- Upload New Image --}}
@if ($errors->has('image')) {{ $errors->first('image') }} @endif
Recommended size: 1200 x 800px. Only jpg, png, jpeg allowed.
{{-- Image Alt Text --}}
@if ($errors->has('imagealt')) {{ $errors->first('imagealt') }} @endif
{{-- Status --}}
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
{{-- Submit --}}
{{-- /Card --}}
@endsection @push('scripts') @endpush