{{-- Login/Sign-In --}} @extends('../user.app') @section('pagetitle') Login/Registration @stop @section('main-content')
Close
Enter your personal details to create an acount
{{ 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
{{-- --}}
Enter your email and password to sign in
{{ csrf_field() }}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
{{-- --}}
@endsection {{-- --}}