@extends('layouts.app') @section('title', __('radio.become_dj') . ' - ' . config('app.name')) @section('content')

{{ __('radio.become_dj') }}

@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(isset($hasPendingApplication) && $hasPendingApplication)
{{ __('radio.application_pending') }}
@else
@csrf
@endif
@endsection