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

Inscription

Vous avez un compte? Cliquer ici pour vous identifier.

@if ($message = Session::get('success'))

{{ $message }}

@endif @if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@endsection {{-- @section('content')
{{ __('Register') }}
@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endsection --}}