{{-- resources/views/admin/brands/create.blade.php --}} {{-- Brand form: Category + Country + Destination + URL + Discount + Description + Top/Popular --}} {{-- Controller: Admin\BrandController@create / @store --}} @extends('layouts.admin') @section('title', 'Add Brand') @section('page_title', 'Add Brand') @section('page_css') @endsection @section('content') {{-- Brand Name --}} Brand Name * @error('name') {{ $message }} @enderror {{-- Category --}} Category Select Category @foreach($categories as $cat) id ? 'selected' : '' }}> {{ $cat->name }} @endforeach @error('category_id') {{ $message }} @enderror {{-- Country --}} Country Select Country @foreach($countries as $country) id ? 'selected' : '' }}> {{ $country->name }} @endforeach @error('country_id') {{ $message }} @enderror {{-- Destination (AJAX) --}} Destination Select Country first @error('destination_id') {{ $message }} @enderror {{-- Brand Deal URL --}} Brand Deal URL Link to the brand's deal page on your site @error('url') {{ $message }} @enderror {{-- Official Website --}} Official Website @error('website') {{ $message }} @enderror {{-- Discount % --}} Discount % @error('discount_percent') {{ $message }} @enderror {{-- Description --}} Brand Description {{ old('description') }} @error('description') {{ $message }} @enderror {{-- Toggles --}} Top Brand Popular Brand Status (Active) Save Brand Cancel @endsection @section('page_js') @endsection