modified register.blade.php template

This commit is contained in:
TLRZ Seyfferth 2017-09-13 10:39:26 +02:00
parent 679e09d554
commit 8a0e5bfeba

View File

@ -1,11 +1,8 @@
@extends('layouts.app') @extends('layouts.app')
@section('title','Neuer Benutzer'); @section('title','Neuer Benutzer')
@section('content') @section('content')
<div class="row"> <h2>Register</h2>
<div class="panel panel-default">
<div class="panel-heading">Register</div>
<div class="panel-body">
<form class="form-horizontal" role="form" method="POST" action="{{ route('register') }}"> <form class="form-horizontal" role="form" method="POST" action="{{ route('register') }}">
{{ csrf_field() }} {{ csrf_field() }}
@ -68,7 +65,7 @@
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="telefon" class="col-md-4 col-form-label">Anzeigename</label> <label for="telefon" class="col-md-4 col-form-label">Telefon</label>
<div class="col-md-6"> <div class="col-md-6">
<input id="telefon" type="text" class="form-control" name="telefon" required> <input id="telefon" type="text" class="form-control" name="telefon" required>
@ -83,7 +80,4 @@
</div> </div>
</div> </div>
</form> </form>
</div>
</div>
</div>
@endsection @endsection