@extends('customs_layouts.app') @section('content') @if(session()->has('error'))
{{ session()->get('error') }}
@endif @if(session()->has('info'))
{{ session()->get('info') }}
@endif

{{ trans('panel.site_title') }}

Customs {{ trans('global.reset_password') }}

@csrf
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('password'))
{{ $errors->first('password') }}
@endif
@endsection