Verify phone number
{{Form::label('phone', 'Mobile number')}}
{{Form::text('phone', old('phone'), ['class' => $errors->has('phone') ? 'is-invalid' : null, 'placeholder' => '(555) 555-5555'])}}
@if($errors->has('phone'))
{{$errors->first('phone')}}
@endif