@include('Admin.Includes.header') @php use Carbon\Carbon; use Illuminate\Support\Facades\Auth; $logged_in_user = Auth::user(); use App\General\BrandClass; @endphp
@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
  • If you have already selected featured image, Please select it again!
@endif
@csrf @method('PUT')
{{ __('Brand Details (Compulsory)') }}
{{ url('/') }}/tool-brands/
{{ __('Product SEO Details (Optional)') }}
{{ __('Brand Actions') }}

Created By: @php print(BrandClass::CreateBy($brand->created_by)); @endphp

Created Date: {{ $brand->created_at ? Carbon::parse($brand->created_at)->timezone('Australia/Sydney')->format('j F Y, g:i A T') : '' }}

Updated Date: {{ $brand->updated_at ? Carbon::parse($brand->updated_at)->timezone('Australia/Sydney')->format('j F Y, g:i A T') : '' }}

{{ __('More Details (Required)') }}
{{ __('Featured Media (Optional)') }}
Preferred Dimension: (800px) x (500px)
@if ($brand->logo_image != '') @endif
Preferred Dimension: (1920px) x (800px)
@if ($brand->cover_image != '') @endif
@include('Admin.Includes.footer')