@extends('layouts.auth') @section('title', 'Register') @push('styles') @endpush @section('content')
{{-- Logo --}}
FlareSend Logo FlareSend
{{--

Create Account

--}}

Reach customers directly on WhatsApp

{{-- Alerts --}} @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- Registration Form --}}
@csrf
{{-- Divider --}} {{--
or
--}}

Already have an account? Sign In

@endsection