私は現在、私のソーシャルメディアのプロファイルの少なくとも2つを満たす必要があるプロジェクトをしています。しかし、私はこれを達成できませんでした。 は、私は、これらのフィールドのうちの少なくとも2つは記入する必要がなければならないことを望む作成方法少なくとも2つのフィールドでLaravelを記入する必要があります5.2
<form role="form" id="submit" class="p-md col-8">
<div class="form-group">
<label>Twitter</label>
<div class="social-link-input">
<i class="icon fa fa-twitter"></i>
<input type="text" name="twitter" class="form-control" placeholder="https://twitter.com/username" value="{{!empty($user->twitter)?$user->twitter:''}}">
</div>
</div>
<div class="form-group">
<label>Facebook</label>
<div class="social-link-input">
<i class="icon fa fa-facebook"></i>
<input type="text" name="facebook" class="form-control" placeholder="https://www.facebook.com/username/" value="{{!empty($user->facebook)?$user->facebook:''}}">
</div>
</div>
<div class="form-group">
<label>Linkedin</label>
<div class="social-link-input">
<i class="icon fa fa-linkedin"></i>
<input type="text" name="linkedin" class="form-control" placeholder="https://www.linkedin.com/in/username" value="{{!empty($user->linkedin)?$user->linkedin:''}}">
</div>
</div>
<div class="form-group">
<label>Google Plus</label>
<div class="social-link-input">
<i class="icon fa fa-google-plus"></i>
<input type="text" name="google_plus" class="form-control" placeholder="https://plus.google.com/+UserName" value="{{!empty($user->google_plus)?$user->google_plus:''}}">
</div>
</div>
<div class="form-group">
<label>Github</label>
<div class="social-link-input">
<i class="icon fa fa-github"></i>
<input type="text" name="github" class="form-control" placeholder="https://github.com/username" value="{{!empty($user->github)?$user->github:''}}">
</div>
</div>
<div class="form-group">
<label>Tumblr</label>
<div class="social-link-input">
<i class="icon fa fa-google-plus"></i>
<input type="text" name="dribbble" class="form-control" placeholder="https://www.tumblr.com/" value="{{!empty($user->dribbble)?$user->dribbble:''}}">
</div>
</div>
<div class="form-group">
<label>Youtube</label>
<div class="social-link-input">
<i class="icon fa fa-youtube"></i>
<input type="text" name="youtube" id="youtube" class="form-control" placeholder="https://www.youtube.com/user/username" value="{{!empty($user->youtube)?$user->youtube:''}}">
</div>
</div>
<div class="form-group">
<label>Flicker</label>
<div class="social-link-input">
<i class="icon fa fa-flickr"></i>
<input type="text" name="flicker" class="form-control" placeholder="https://www.flickr.com/people/username/" value="{{!empty($user->flicker)?$user->fliker:''}}">
</div>
</div>
<button type="submit" class="btn btn-info m-t">Save</button>
</form>
これらの分野でこのフォームを持っています。 私のコントローラは、私は
<input type="text" name="social['twitter']" class="form-control" placeholder="https://twitter.com/username" value="{{!empty($user->twitter)?$user->twitter:''}}">
様およびlaravelバックエンドでthis.Please
に対応します。では、どうすればこれだけを検証できますか?私のコントローラを見てください。 @Sherif –
私は答えを更新しました...私はそれがあなたが意味することを願っています – Sherif