@extends('packages/installer::master') @section('template_title', trans('packages/installer::installer.create_account')) @section('container')
@csrf
$errors->has('first_name'), 'ring-gray-300' => !$errors->has('first_name'), ]) placeholder="{{ trans('packages/installer::installer.first_name') }}" > @if ($errors->has('first_name'))
@endif
@error('first_name')

{{ $message }}

@enderror
$errors->has('last_name'), 'ring-gray-300' => !$errors->has('last_name'), ]) placeholder="{{ trans('packages/installer::installer.last_name') }}" > @if ($errors->has('last_name'))
@endif
@error('last_name')

{{ $message }}

@enderror
$errors->has('username'), 'ring-gray-300' => !$errors->has('username'), ]) placeholder="{{ trans('packages/installer::installer.username') }}" > @if ($errors->has('username'))
@endif
@error('username')

{{ $message }}

@enderror
$errors->has('email'), 'ring-gray-300' => !$errors->has('email'), ]) placeholder="{{ trans('packages/installer::installer.email') }}" > @if ($errors->has('email'))
@endif
@error('email')

{{ $message }}

@enderror
$errors->has('password'), 'ring-gray-300' => !$errors->has('password'), ]) placeholder="{{ trans('packages/installer::installer.password') }}" > @if ($errors->has('password'))
@endif
@error('password')

{{ $message }}

@enderror
$errors->has('password_confirmation'), 'ring-gray-300' => !$errors->has('password_confirmation'), ]) placeholder="{{ trans('packages/installer::installer.password_confirmation') }}" > @if ($errors->has('password_confirmation'))
@endif
@error('password_confirmation')

{{ $message }}

@enderror
@endsection