@extends('layout') @section('page_title', __('firstcop.auth.register')) @section('content')

{{__('Register')}}

@csrf
{{ Form::text('email', old('email'), ['class' => 'fc-input' . ($errors->has('email') ? ' is-invalid' : ''), 'required'=> true,'placeholder' => __('Email')]) }} @if ($errors->has('email')) {{ $errors->first('email') }} @endif
{{ Form::text('name', old('name'), ['class' => 'fc-input' . ($errors->has('name') ? ' is-invalid' : ''), 'required'=> true,'placeholder' => __('Nom')]) }} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endsection