@extends('admin.layouts.master-soyuz') @section('title',__('Edit Brand | ')) @section('body') @component('admin.component.breadcumb',['thirdactive' => 'active']) @slot('heading') {{ __('Home') }} @endslot @slot('menu1') {{ __("Product Management") }} @endslot @slot('menu2') {{ __("Edit Brand") }} @endslot @slot('button')
{{ __("Back") }}
@endslot @endcomponent
@if ($errors->any())
@foreach($errors->all() as $error)
{{ $error}}
×
@endforeach
@endif
{{ __("Edit Brand") }}
{{csrf_field()}} {{ method_field('PUT') }}
{{__("Brand Name")}}:
*
{{__("Brand Image")}}
*
@if($image = @file_get_contents('images/brands/'.$brand->image))
@else
@endif
{{ __("Browse") }}
({{__("Please Choose Brand Image")}})
{{__("Select Category")}}:
*
@foreach (App\Category::where('status','1')->get(); as $item) @if($brand->category_id != '')
category_id as $c) {{$c == $item->id ? 'selected' : ''}} @endforeach value="{{ $item->id }}">{{ $item->title }}
@else
{{ $item->title }}
@endif @endforeach
Show Image Footer
*
({{__("If You Choose Active Then Image Show In Footer Brand Logo")}})
{{__("Status")}}
({{__("Choose status for your brand")}})
@endsection @section('custom-script') @endsection