@extends('layouts.app') @section('content')

Mein Account

Allgemeine Einstellungen

{!! csrf_field() !!}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
Dein Passwort muss mindestens aus einem Buchstaben, einer Zahl und einem Sonderzeichen bestehen und mindestens 8 Zeichen lang sein. @if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif

Social Login

@if($user->sociallogins()->where('provider', 'google')->first() === null) @else @endif
@if($user->sociallogins()->where('provider', 'facebook')->first() === null) @else @endif
@endsection