@extends('layouts.login', ['title' => trans('auth.register.title')]) @section('content')

{{ trans('auth.register.title') }}

@include('partials.errors')
{{ csrf_field() }}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('tos')) {{ $errors->first('tos') }} @endif
{{ trans('auth.register.already_account') }}
@endsection