@extends('site.layouts.app') @section('title','Update password') {{-- SEO Start --}} @section('meta_description', 'This is the description for SEO') @section('meta_keywords', 'SEO, Keywords, Web Development') @section('meta_author', 'John Doe') {{-- SEO End --}} @section('content')
Create A Password
@csrf
@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
@endsection