@extends('layouts.app') @section('content')
Register
{{ csrf_field() }}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('phone_number')) {{ $errors->first('phone_number') }}
@endif In international format with country code, e.g +359XXXXXXXXX
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
@if ($errors->has('coach')) {{ $errors->first('coach') }} @endif
@if ($errors->has('coach_sec')) {{ $errors->first('coach_sec') }}
@endif Optional. You may enter more than one choreographer, separated by commas (,).
@if ($errors->has('country')) {{ $errors->first('country') }} @endif
@if ($errors->has('city')) {{ $errors->first('city') }} @endif
@if(env('NO_ONLINE_EVENT',false)) @else
@if ($errors->has('participation_mode')) {{ $errors->first('participation_mode') }}
@endif Please indicate whether your organization will participate in person or online.
@endif
@if(\App\AssetManager\AssetPlaceholder::hasActiveAssets(\App\AssetManager\AssetPlaceholder::placeholder_terms)) {!! \App\AssetManager\AssetPlaceholder::display(\App\AssetManager\AssetPlaceholder::placeholder_terms) !!} @else I have read and agree to the competition's rules and terms @endif {{--I have read and agree to the competition's rules and terms found here: Bulgarian, English--}}
@if ($errors->has('terms')) {{ $errors->first('terms') }} @endif
@endsection