@extends('frontend.app') @section('content') @php use App\Models\Information; $information = Information::first(); // ✅ same as header $brandGradient = $information->gradient_code ?? 'linear-gradient(90deg,#0d6efd,#00276C)'; $brandText = $information->primary_color ?? '#ffffff'; @endphp @csrf Sign Up {{-- Global error --}} @if ($errors->any()) {{ $errors->first() }} @endif First Name * @error('first_name') {{ $message }} @enderror Last Name * @error('last_name') {{ $message }} @enderror Username * @error('username') {{ $message }} @enderror Phone * @error('mobile') {{ $message }} @enderror Email Address * @error('email') {{ $message }} @enderror Password * @error('password') {{ $message }} @enderror Confirm Password * Create Account Already have an account? Sign In @endsection @push('js') @endpush