@extends('admin.layouts.layout-login') @section('content')
Reset Password

Reset-Password with {{ \Config::get('settings.company_name') }}.

{{ \Config::get('settings.company_name') }} Logo
{!! html()->form('POST', url('admin/password/reset'))->attributes(['id' => 'reset_password'])->open() !!}

Reset your account password

@include('admin.components.messages')
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
{!! html()->form()->close() !!}
@endsection