@extends('layouts/contentNavbarLayout')
@section('title', 'Hostel Settings')
@section('content')
Settings / Hostel Settings
{{-- Usage Examples:
In Blade templates:
- {{ $hostelSettings->name }} or {{ hostel_name() }}
- {{ $hostelSettings->logo_url }} or {{ hostel_logo() }}
- {{ hostel_setting('email') }}
- {{ hostel_setting('phone') }}
Example: Display logo in navbar
 }})
--}}
@if (session('success'))
{{ session('success') }}
@endif
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@endsection
@section('page-script')
@endsection