@extends('layouts.default') @section('content')
@csrf
@if($errors->any())
{{$errors->first()}}
@endif
person @if ($errors->has('phone_no')) {{ $errors->first('phone_no') }} @endif
lock @if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if (Route::has('password.request')) {{ __('Forgot Your Password?') }} @endif
@endsection