@extends('layouts.adminlayouts.app') @section('title') Edit Brands - {{$appSetting->h1}} | {{$appSetting->slogan}} @endsection @push('css') @endpush @section('contents') @include('alerts.alerts')
Edit Brand
@csrf
@if ($errors->has('title'))

{{ $errors->first('title') }}

@endif
@if ($errors->has('slug'))

{{ $errors->first('slug') }}

@endif
@if ($errors->has('description'))

{{ $errors->first('description') }}

@endif
@if($brand->img_name==null) No Image @else {{$brand->title}} @endif
@if ($errors->has('image'))

{{ $errors->first('image') }}

@endif
@endsection @push('js') @endpush