@extends('master') @section('content') @php $logo = \App\Models\Setting::find(1)->logo; @endphp
logo

{{ __('Welcome to ') }}{{ \App\Models\Setting::find(1)->app_name }}

@csrf
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif @if (Session::has('error_msg')) {{ Session::get('error_msg') }} @endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif

{{ __('Welcome') }}

@endsection