@extends('landing::_layouts.master') @section('title', __('messages.global.login')) @section('content') {{-- Header --}}

{{ __('messages.global.user_area') }}

{{-- Starting gradient --}} @include('landing::_layouts/_partials/gradient-start', ['fill' => '#ffffff']) {{-- Content --}}
{{-- Flash Messages --}} @if (session('resent_code')) @endif {{-- Title --}}

{{ __('messages.has_verified_phone.please_verify') }}

{{-- Form --}}
{{-- CSRF --}} @csrf {{-- Phone Field --}}
@if ($errors->has('phone'))

{{ $errors->first('phone') }}

@endif
{{-- Verification Code Field --}}
@if ($errors->has('verification_code'))

{{ $errors->first('verification_code') }}

@endif
{{-- Resend link --}}
{{-- Submit --}} {{-- Logout link --}}
{{-- Ending gradient --}} @include('landing::_layouts/_partials/gradient-end', ['fill' => '#ffffff']) @endsection @section('js') @endsection