@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 ($errors->has('country')) {{ $errors->first('country') }} @endif
@if ($errors->has('city')) {{ $errors->first('city') }} @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