@extends('frontend.layouts.app') @section('title', app_name() . ' | Verify Your Account') @push('after-styles') @endpush @section('content')
Verify Your Account
{{ html()->form('POST', route('frontend.user.chk_verify_otp'))->open() }}
{{-- {{ html()->label(__('validation.attributes.frontend.otp_code'))->for('otp_code') }} --}} {{ html()->text('otp_code') ->class('form-control') ->placeholder(__('validation.attributes.frontend.otp_code')) ->attribute('maxlength', 191) ->required() }}
{{ form_submit(__('labels.frontend.auth.verify_button')) }}
{{ html()->form()->close() }}
@endsection