@extends('coaching.layout.coaching_auth') @section('content')
@if(Session::has('success'))

{{ Session::get('success') }}

@endif @if(Session::has('error'))

{{ Session::get('error') }}

@endif

Login to your Account

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