@extends('dashboard.layouts.master') @section('content')

{{__('admin.Add Conference')}}

@csrf
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('image')) {{ $errors->first('image') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@if ($errors->has('nickname')) {{ $errors->first('nickname') }} @endif
@if ($errors->has('about')) {{ $errors->first('about') }} @endif
@if ($errors->has('category_id')) {{ $errors->first('category_id') }} @endif
@if ($errors->has('type_id')) {{ $errors->first('type_id') }} @endif
@if ($errors->has('fees')) {{ $errors->first('fees') }} @endif
@if ($errors->has('feature_id')) {{ $errors->first('feature_id') }} @endif
{{----}}
@endsection