@extends('admin.layouts.master') @section('title', 'Add New Brand') @section('css') @endsection @section('content')

Create Brand

@csrf
@if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if ($errors->has('slug'))

{{ $errors->first('slug') }}

@endif
@if ($errors->has('logo'))

{{ $errors->first('logo') }}

@endif @if(old('logo'))

Current Logo: {{ old('logo') }}

Logo Preview
@endif
Meta Data
@error('meta_title')

{{ $message }}

@enderror
@error('meta_image')

{{ $message }}

@enderror
@error('meta_description')

{{ $message }}

@enderror
Publish
@if ($errors->has('order_no'))

{{ $errors->first('order_no') }}

@endif
@error('status')

{{ $message }}

@enderror
@error('is_featured')

{{ $message }}

@enderror
Video
@if ($errors->has('video_url'))

{{ $errors->first('video_url') }}

@endif
Image
Banner Image

Add Banner Image.

@error('banner_image')

{{ $message }}

@enderror
@endsection @section('js') @endsection