You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
@extends('layouts.app')
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
<div class="container">
|
|
|
|
<div class="row justify-content-center">
|
|
|
|
<div class="col-md-8">
|
|
|
|
@if ($errors->any())
|
|
|
|
<div class="alert alert-danger">
|
|
|
|
<ul class="mt-3">
|
|
|
|
@foreach ($errors->all() as $error)
|
|
|
|
<li>{{ $error }}</li>
|
|
|
|
@endforeach
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
<donation-card></donation-card>
|
|
|
|
<div class="card mt-3">
|
|
|
|
<div class="card-body">
|
|
|
|
<h2>
|
|
|
|
Özgür Yazılım Derneği
|
|
|
|
</h2>
|
|
|
|
Türkiye İş Bankası Altıyol Şubesi (1077) <br>
|
|
|
|
Hesap No: 1077-0744382 <br>
|
|
|
|
IBAN: TR47 0006 4000 0011 0770 7443 82
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|