@extends('template.layouts.template-base') @section('title', 'Edit Banner') @section('styles') @endsection @section('content')
{{-- Header --}} {{-- Main Form --}}
@csrf @method('PUT') {{-- Validation Errors --}} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- Banner Image --}}

Banner Image * (370px*150px)

{{-- Action Buttons --}}
Cancel
@endsection @section('scripts') @endsection