@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')) {{ __('messages.has_verified_phone.resent') }} @endif {{-- Title --}} {{ __('messages.has_verified_phone.please_verify') }} {{-- Form --}} {{-- CSRF --}} @csrf {{-- Phone Field --}} {{ __('messages.global.phone_number') }} @if ($errors->has('phone')) {{ $errors->first('phone') }} @endif {{-- Verification Code Field --}} {{ __('messages.global.verification_code') }} @if ($errors->has('verification_code')) {{ $errors->first('verification_code') }} @endif {{-- Resend link --}} {{ __('messages.has_verified_phone.resend') }} {{-- Submit --}} {{ __('messages.global.validate') }} {{-- Logout link --}} {{ __('messages.global.logout') }} {{-- Ending gradient --}} @include('landing::_layouts/_partials/gradient-end', ['fill' => '#ffffff']) @endsection @section('js') @endsection
{{ __('messages.has_verified_phone.resent') }}
{{ $errors->first('phone') }}
{{ $errors->first('verification_code') }}