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

Banner

# Title Code Order Image Created At Action
Add/Update Banner
{!! Form::open(['id' => 'bannerForm', 'files' => true]) !!} {!! Form::hidden('id', null, ['id' => 'bannerId']) !!}
{!! Form::label('title', 'Title', ['class' => 'form-label']) !!} {!! Form::text('title', null, [ 'class' => 'form-control form-control-sm', 'id' => 'bannerTitle', 'required' => true, 'placeholder' => 'Enter Title', ]) !!}
{!! Form::label('code', 'Code', ['class' => 'form-label']) !!} {!! Form::text('code', null, [ 'class' => 'form-control form-control-sm', 'id' => 'bannerCode', 'placeholder' => 'Enter Code', ]) !!}
{!! Form::label('order', 'Order', ['class' => 'form-label']) !!} {!! Form::number('order', null, [ 'class' => 'form-control form-control-sm', 'id' => 'bannerOrder', 'required' => true, 'placeholder' => 'Enter Order', 'min' => 0, ]) !!}
{!! Form::label('image', 'Image', ['class' => 'form-label']) !!} * {!! Form::file('image[]', ['class' => 'form-control form-control-sm', 'id' => 'bannerImage', 'required' => true, 'accept' => 'image/jpeg,image/png,image/jpg,image/gif,image/webp']) !!} Accepted formats: JPEG, PNG, JPG, GIF, WEBP (Max: 2MB)
{{-- Image preview container --}}
{!! Form::close() !!}
@endsection @section('javascript') @endsection