@extends('layouts.app') @php $title = isset($banners) ? 'Edit Banner' : 'Create Banner'; @endphp @section('title', $title) @section('css') @endsection @section('content') Banner Management Dashboard {{ $title }} {{ $title }} @csrf @if (isset($banners)) @method('PUT') @endif Name * Service Select Service @foreach ($services as $key => $ser) service_id == $key ? 'selected' : '' }}> {{ $ser }} @endforeach Banner Image * (aspect ratio 150*314) Choose files {{-- Preview Section --}} @if (isset($banners) && $banners->image) @if (is_array($banners->banner_images)) @foreach ($banners->banner_images as $image) X @endforeach @endif @endif Expire Date * {{-- --}} {{-- --}} Status status == 1 ? 'selected' : '' }}>Active status == 0 ? 'selected' : '' }}>In Active @endsection @section('scripts') @endsection