@extends('layouts.admin') @section('title') Admin | Feature Event Add @endsection @section('content')

Create/Event

Event Create
@php $e = $event ?? null; @endphp
@if(Session::has('success'))
{{ Session::get('success') }}
@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif
{{ csrf_field() }}
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('slug')) {{ $errors->first('slug') }} @endif
@if ($errors->has('start_date')) {{ $errors->first('start_date') }} @endif
@if ($errors->has('end_date')) {{ $errors->first('end_date') }} @endif
@if ($errors->has('location')) {{ $errors->first('location') }} @endif
@if ($errors->has('youtube_link')) {{ $errors->first('youtube_link') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
@if ($errors->has('visibility')) {{ $errors->first('visibility') }} @endif
@if ($errors->has('image')) {{ $errors->first('image') }} @endif
@if ($errors->has('tags')) {{ $errors->first('tags') }} @endif
@if ($errors->has('meta_title')) {{ $errors->first('meta_title') }} @endif
@if ($errors->has('meta_description')) {{ $errors->first('meta_description') }} @endif
@if ($errors->has('meta_keywords')) {{ old('meta_keywords', $e->meta_keywords ?? '') }} @endif
Cancel
@endsection @section('scripts') @endsection