@extends('layout.master') @section('css') @stop @section('content')
@csrf

Edit Event

@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if ($errors->has('event_type'))
{{ $errors->first('event_type') }}
@endif
@if ($errors->has('subject'))
{{ $errors->first('subject') }}
@endif
@if ($errors->has('conductedby'))
{{ $errors->first('subject') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if ($errors->has('platform'))
{{ $errors->first('platform') }}
@endif
Ex.: http://youtube.com @if ($errors->has('social_link'))
{{ $errors->first('social_link') }}
@endif
@if ($errors->has('oraganize_date'))
{{ $errors->first('oraganize_date') }}
@endif
@if ($errors->has('time'))
{{ $errors->first('time') }}
@endif
@stop @section('script') @stop