call
@if ($account->phone)
Change your phone number
@else
Set your phone number
@endif
{!! Form::open(['route' => 'account.phone.request_change']) !!}
@if ($account->phone)
Please enter the new phone number that you would like to link to your account.
@else
The verification code is invalid or you didn't receive it.
Please enter your phone number again to receive a new code.
@endif
{!! Form::text('phone', null, ['placeholder' => '+12345678', 'required']) !!}
{!! Form::label('phone', 'Phone') !!}
@include('parts.errors', ['name' => 'phone'])
@include('parts.captcha')
{!! Form::submit('Verify', ['class' => 'btn oppose']) !!}
{!! Form::close() !!}