@extends('frontend.layouts.index') @section('content')

Be Come A Member

@if(Session::has('success'))

{{ Session::get('success') }}

@endif
@method('POST') @csrf
@if($errors->has('fullname'))
{{ $errors->first('fullname') }}
@endif
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('phone_number'))
{{ $errors->first('phone_number') }}
@endif
@if($errors->has('address'))
{{ $errors->first('address') }}
@endif
@if($errors->has('bio'))
{{ $errors->first('bio') }}
@endif
{!! NoCaptcha::display() !!} @if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif
@endsection