@extends('admin.master') @section('title') Brand @endsection @section('content')

Brand

# Brand Name Slug Created At Action
Add/Update Brand
{!! Form::open(['id' => 'brandForm', 'files' => true]) !!} {!! Form::hidden('id', null, ['id' => 'brandId']) !!}
{!! Form::label('brand_name', 'Brand Name', ['class' => 'form-label']) !!} {!! Form::text('brand_name', null, [ 'class' => 'form-control form-control-sm', 'id' => 'brandName', 'required' => true, 'placeholder' => 'Enter Brand Name', ]) !!}
{!! Form::label('logo', 'Logo', ['class' => 'form-label']) !!} {!! Form::file('logo[]', ['class' => 'form-control form-control-sm', 'id' => 'brandLogo']) !!}
{{-- Image preview container --}}
{!! Form::close() !!}
@endsection @section('javascript') @endsection