@extends('backend.layout.master-tailwind') @section('title', __('Change Admin URL Prefix')) @section('content')

{{ __('Admin URL Prefix') }}

{{ __('Customize the URL prefix used to access the admin panel') }}

@if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
{{ __('You can change the admin login page URL prefix by entering a single word. Avoid using "login" as it is reserved for the user login page.') }}
@csrf
@endsection