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

{{ __('Add New Brand') }}

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

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

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

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

@endif
*
@if ($errors->has('is_featured'))

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

@endif
*
@if ($errors->has('status'))

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

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

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

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

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

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

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

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

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

@endif

Preview Logo @if ($errors->has('logo'))

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

@endif

Preview Banner Image @if ($errors->has('banner_image'))

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

@endif

Preview Meta Image @if ($errors->has('meta_image'))

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

@endif
@endsection @section('js') @endsection