@extends('backend.admin-master') @section('site-title') {{__('Brand Settings')}} @endsection @section('style') @endsection @section('content')
@include('backend/partials/message') @if($errors->any())
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif

{{__('All Brand Items')}}

@foreach($all_brand as $data) @endforeach
{{__('ID')}} {{__('Title')}} {{__('Url')}} {{__('Image')}} {{__('Action')}}
{{$data->id}} {{$data->title}} {{$data->url}} @php $brand_img = get_attachment_image_by_id($data->image,null,true); $img_url = ''; @endphp @if (!empty($brand_img))
@php $img_url = $brand_img['img_url']; @endphp @endif

{{__('New Brand')}}

@csrf
{{__('Recommended image size 160x80')}}
@include('backend.partials.media-upload.media-upload-markup') @endsection @section('script') @include('backend.partials.media-upload.media-js') @endsection