@extends('layouts.master') @section('css') @section('title') {{ __('home.sales') }} @stop @endsection @section('page-header')
@if ($errors->any())
@endif @if (session()->has('delete')) @endif
{{ isset($brandToEdit) ? __('home.edit_brand') : __('home.add_new_brand') }}
@csrf
@if(isset($brandToEdit)) {{ __('home.cancel') }} @endif
@foreach($brands as $brand) @endforeach
{{ __('home.name_ar') }} {{ __('home.name_en') }} {{ __('home.status') }} {{ __('home.actions') }}
{{ $brand->name_ar }} {{ $brand->name_en }} @if($brand->status) {{ __('home.active') }} @else {{ __('home.inactive') }} @endif
@csrf @method('DELETE')
@endsection