@extends('super_admins.layouts.master') @section('title') Edit Event @endsection @section('css') @endsection @section('content') @if ($errors->any()) @foreach ($errors->all() as $error) {{-- {{ $error }} --}} @endforeach @endif
{{--
--}}

Edit Event

@csrf @method('PUT')
@if (isset($pricing_plans))
@if ($errors->has('pricing_plan_id')) {{ $errors->first('pricing_plan_id') }} @endif
@endif
@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
@if ($errors->has('user_name')) {{ $errors->first('user_name') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@if ($event->image) {{ $event->name }}     @else -No Image Selected @endif @if ($errors->has('image')) {{ $errors->first('image') }} @endif
is_active) checked @endif class="custom-control-input" id="customSwitch1" aria-describedby="IsActiveError" aria-invalid="true">
{{-- @if ($errors->has('is_active')) {{ $errors->first('is_active') }} @endif --}}
is_featured) checked @endif class="custom-control-input" id="customSwitch2" aria-describedby="IsFeaturedError" aria-invalid="true">
{{-- @if ($errors->has('is_featured')) {{ $errors->first('is_featured') }} @endif --}}
{{-- --}}
@include('super_admins.includes.image_cropper_modal') @endsection @section('scripts') @include('super_admins.includes.image_cropper_scripts') @endsection