@extends('adminlte::master') @section('adminlte_css') @yield('css') @stop @section('classes_body', 'login-page') @php( $password_reset_url = View::getSection('password_reset_url') ?? config('adminlte.password_reset_url', 'password/reset') ) @php( $dashboard_url = View::getSection('dashboard_url') ?? config('adminlte.dashboard_url', 'home') ) @if (config('adminlte.use_route_url', false)) @php( $password_reset_url = $password_reset_url ? route($password_reset_url) : '' ) @php( $dashboard_url = $dashboard_url ? route($dashboard_url) : '' ) @else @php( $password_reset_url = $password_reset_url ? url($password_reset_url) : '' ) @php( $dashboard_url = $dashboard_url ? url($dashboard_url) : '' ) @endif @section('body')
{!! config('adminlte.logo', '
Admin
LTE') !!}
{{ trans('adminlte::adminlte.password_reset_message') }}
{{ csrf_field() }}
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if ($errors->has('password_confirmation'))
{{ $errors->first('password_confirmation') }}
@endif
{{ trans('adminlte::adminlte.reset_password') }}
@stop @section('adminlte_js') @stack('js') @yield('js') @stop