@extends('layouts.frontend.app') @push('title') {{ __('Home') }} @endpush @section('content')

{{ __('Use the search to find a coach') }}

@csrf

{{ __('Manage and edit your ratings') }}

{{ __('Anonymity Preference') }}

{{ __('Provide your feedback by giving ratings.') }}

@guest
@endguest

{{ __('Athletes') }}

  • {{ __('Provide a platform to leave structured, honest reviews of contest preparation experiences.') }}
  • {{ __('Help athletes make informed decisions by accessing verified feedback about coaches.') }}

{{ __('Coaches') }}

  • {{ __('Offer coaches a way to showcase their expertise and respond to reviews constructively.') }}
  • {{ __('Build their reputation and attract new clients through transparent feedback.') }}
@guest @endguest @auth @php if (! isset($user)) { $user = $data['user'] ?? Auth::user(); } @endphp @if ($user->type == 'coach' || $user->type == 'athlete') {{ __('Get Listed') }} @else {{ __('Get Listed') }} @endif @endauth

{{ __('RATE MY COACH') }}

  • {{ __('We believe that the bodybuilding industry lacks transparency between coaches and clients, with limited accessible information to help athletes choose coaches.') }}
  • {{ __('Our mission is to provide athletes with a reliable, transparent platform for reviewing bodybuilding coaches, helping others make informed choices for contest preparation.') }}
@guest
@endguest
@endsection @push('toastr') @include('layouts.frontend.partials.flash-messages-toastr') @endpush