{{-- resources/views/admin/brands/edit.blade.php --}} {{-- Controller: Admin\BrandController@edit / @update --}} @extends('layouts.admin') @section('title', 'Edit Brand') @section('page_title', 'Edit Brand') @section('page_css') @endsection @section('content') Brand Name * @error('name') {{ $message }} @enderror Category Select Category @foreach($categories as $cat) category_id) == $cat->id ? 'selected' : '' }}> {{ $cat->name }} @endforeach Country Select Country @foreach($countries as $country) country_id) == $country->id ? 'selected' : '' }}> {{ $country->name }} @endforeach Destination @if($brand->destination) {{ $brand->destination->name }} @else Select Country first @endif Brand Deal URL @error('url') {{ $message }} @enderror Official Website Discount % Brand Description {{ old('description', $brand->description) }} Top Brand is_top) ? 'checked' : '' }}> Popular Brand is_popular) ? 'checked' : '' }}> Status (Active) status) === 'active' ? 'checked' : '' }}> Update Brand Cancel @endsection @section('page_js') @endsection