@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('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 If multiple, enter all names separated by comma (,).
@if ($errors->has('country')) {{ $errors->first('country') }} @endif
@if ($errors->has('city')) {{ $errors->first('city') }} @endif
{{--
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('zip')) {{ $errors->first('zip') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif In international format, e.g. +44XXXXXXXXX
--}}
@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