@extends('layouts.auth_app') @section('title') Register @endsection @section('css') @endsection @section('content')

Register

{{ csrf_field() }} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
*
{{ $errors->first('name') }}
*
{{ $errors->first('email') }}
*
{{ $errors->first('password') }}
*
{{ $errors->first('password_confirmation') }}
Already have an account? Sign In
@endsection