@extends('layouts.auth_app') @section('title') Set Password @endsection @section('css') @endsection @section('content')

Set Password

@if( Session::has( 'error' ))
  • {{ Session::get( 'error' ) }}
@endif
{{ csrf_field() }} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
*
{{ $errors->first('email') }}
*
{{ $errors->first('password') }}
*
{{ $errors->first('password_confirmation') }}
@endsection