@section('site_title', formatTitle([__('Password generator'), __('Tool'), config('settings.title')])) @include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => route('dashboard'), 'title' => __('Home')], ['url' => route('tools'), 'title' => __('Tools')], ['title' => __('Tool')], ]])

{{ __('Password generator') }}

{{ __('Password generator') }}
@include('shared.message')
@csrf
@if ($errors->has('length')) {{ $errors->first('length') }} @endif
@if ($errors->has('lower_case')) {{ $errors->first('lower_case') }} @endif
@if ($errors->has('upper_case')) {{ $errors->first('upper_case') }} @endif
@if ($errors->has('digits')) {{ $errors->first('digits') }} @endif
@if ($errors->has('symbols')) {{ $errors->first('symbols') }} @endif
@if(isset($result))
{{ __('Result') }}
{{ __('Copy') }}
@endif