@extends('layouts.frontend') @section('title', __('Login') . ' - ' . config('app.name', 'SnapNest')) @section('hide_header', true) @section('hide_footer', true) @section('content')

{{ __('Welcome') }}
{{ __('Back.') }}

{{ __('Welcome back, photographer. Let\'s get to work.') }}

@if (session('error'))
{{ session('error') }}
@endif @if (session('status'))
{{ session('status') }}
@endif
@csrf
@error('email') {{ $message }} @enderror
@if (Route::has('password.request')) {{ __('Forgot?') }} @endif
@error('password') {{ $message }} @enderror
@if (!empty($captchaEnabled) && !empty($captchaSiteKey))
@error('g-recaptcha-response') {{ $message }} @enderror @endif
@if (!empty($socialProviders) && count($socialProviders) > 0)
{{ __('Or continue with') }}
@foreach ($socialProviders as $sp) {{ $sp['label'] }} @endforeach
@endif

{{ __('New to the platform?') }} {{ __('Apply for Access') }}

@if (!empty($captchaEnabled) && !empty($captchaSiteKey)) @endif @endsection