@extends('layouts.masterLayout.app') @section('content')

Add Union

@csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if($errors->has('area'))
{{ $errors->first('area') }}
@endif
@if($errors->has('city'))
{{ $errors->first('city') }}
@endif
@if($errors->has('date'))
{{ $errors->first('date') }}
@endif
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('board'))
{{ $errors->first('board') }}
@endif
@if($errors->has('training_areas'))
{{ $errors->first('training_areas') }}
@endif
@if($errors->has('union_manager'))
{{ $errors->first('union_manager') }}
@endif
@if($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
@if($errors->has('sports'))
{{ $errors->first('sports') }}
@endif
@endsection