@extends('layouts.auth')
@section('htmlheader_title')
Register
@endsection
@section('content')
@if (count($errors) > 0)
Whoops! {{ trans('message.someproblems') }}
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if (Session::has('error'))
Whoops! {{ trans('message.someproblems') }}
- {{ Session::get('error') }}
@endif
@endsection