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

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

{!! html()->form('POST', route('set-new-password.submit', ['username' => $data->remember_token]))->attributes(['id' => 'set_new_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