@extends('layouts.front') @section('content')
@csrf
@if($quotationInProgress) Vous avez un devis en cours, terminez votre inscription pour continuer @else Pas de devis en cours @endif
@include('partial.customers.infos', ['inputBackgroundClass' => ' bg-bornage-lgrey'])
{{ Form::text('email', old('email'), ['class' => 'form-control bg-bornage-lgrey text-bornage-dgrey border-0' . ($errors->has('email') ? ' is-invalid' : ''), 'required'=> true]) }} @if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endsection