@extends('admin.layouts.dashboard') @php $title = "Add Brand"; $button_text = "Add Brand"; if($brand->exists) { $title = "Edit Brand"; $button_text = "Update Brand"; } @endphp @section('title', $title) @section('content')

{{ $title }}

@if($brand->exists)
@method('put') @else @endif @csrf
@error('name') {{ $message }} @enderror
@endsection