@extends('admins.dashboard') @section('content')
Create New Conference
{!! csrf_field() !!}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('url')) {{ $errors->first('url') }} @endif
@if ($errors->has('start_submit')) {{ $errors->first('start_submit') }} @endif
@if ($errors->has('end_submit')) {{ $errors->first('end_submit') }} @endif
@if ($errors->has('start_date')) {{ $errors->first('start_date') }} @endif
@if ($errors->has('end_date')) {{ $errors->first('end_date') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
Back
@endsection